<p class="Paragraph"><help:paragraphinfo state="U" number="9" xmlns:help="http://openoffice.org/2000/help"/><span class="T1">Text:</span> Any string expression that you want to return the rightmost characters of.</p>
<p class="Paragraph"><help:paragraphinfo state="U" number="10" xmlns:help="http://openoffice.org/2000/help"/><span class="T1">n:</span> Integer expression that defines the number of characters that you want to return. If <span class="T1">n</span> = 0, a zero-length string is returned.</p>
<p class="Paragraph"><help:paragraphinfo state="U" number="11" xmlns:help="http://openoffice.org/2000/help"/>The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY).</p>
<p class="PropText"><help:paragraphinfo state="U" number="14" xmlns:help="http://openoffice.org/2000/help"/>Dim sInput As String</p>
<p class="PropText"><help:paragraphinfo state="U" number="15" xmlns:help="http://openoffice.org/2000/help"/>Dim sUS_date As String</p>
<p class="PropText"><help:paragraphinfo state="U" number="16" xmlns:help="http://openoffice.org/2000/help"/>sInput = InputBox("Please input a date in the international format 'YYYY-MM-DD'")</p>